memo function - définition. Qu'est-ce que memo function
Diclib.com
Dictionnaire ChatGPT
Entrez un mot ou une phrase dans n'importe quelle langue 👆
Langue:

Traduction et analyse de mots par intelligence artificielle ChatGPT

Sur cette page, vous pouvez obtenir une analyse détaillée d'un mot ou d'une phrase, réalisée à l'aide de la meilleure technologie d'intelligence artificielle à ce jour:

  • comment le mot est utilisé
  • fréquence d'utilisation
  • il est utilisé plus souvent dans le discours oral ou écrit
  • options de traduction de mots
  • exemples d'utilisation (plusieurs phrases avec traduction)
  • étymologie

Qu'est-ce (qui) est memo function - définition

SOFTWARE PROGRAMMING OPTIMIZATION TECHNIQUE
Memoize; Memoisation; Memoizing; Memoise; Memo function; Memo functions; Memoised function; Memoized function; Tabling; Automatic memoization; Memoizing parsers

memo function         
<programming> (Or "memoised function") A function that remembers which arguments it has been called with and the result returned and, if called with the same arguments again, returns the result from its memory rather than recalculating it. Memo functions were invented by Professor Donald Michie of Edinburgh University. The idea was further developed by Robin Popplestone in his Pop2 language long before it was ever worked into LISP. This same principle is found at the hardware level in computer architectures which use a cache to store recently accessed memory locations. A Common Lisp package by Marty Hall <hall@aplcenmp.apl.jhu.edu> ftp://archive.cs.umbc.edu/pub/Memoization. ["'Memo' functions: and machine learning", Donald Michie, Nature, 218, 19-22, 1968]. (2002-07-02)
memoized function         
Tabling         
·noun Board; support.
II. Tabling ·noun A broad hem on the edge of a sail.
III. Tabling ·noun Act of playing at tables. ·see Table, ·noun, 10.
IV. Tabling ·noun A forming into tables; a setting down in order.
V. Tabling ·noun The letting of one timber into another by alternate scores or projections, as in shipbuilding.

Wikipédia

Memoization

In computing, memoization or memoisation is an optimization technique used primarily to speed up computer programs by storing the results of expensive function calls and returning the cached result when the same inputs occur again. Memoization has also been used in other contexts (and for purposes other than speed gains), such as in simple mutually recursive descent parsing. Although related to caching, memoization refers to a specific case of this optimization, distinguishing it from forms of caching such as buffering or page replacement. In the context of some logic programming languages, memoization is also known as tabling.